home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 25
/
CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso
/
CUCD
/
WWW
/
http
/
www.wirenet.co.uk
/
files
/
thor25_arexx.lha
/
FSE
/
Unquote.fse
< prev
Wrap
Text File
|
1995-09-06
|
504b
|
29 lines
/* unqoute.fse - reduce the layer of qoute chars (">") in a block of text
** to just one level.
*/
options results
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
do i=currline to lastline
SETPOS 1 i
GETLINE
line = result
if(line ~= "") then do
DELETELINES
NEWLINE
SETPOS 1 i
INSERTINPUT ">"||strip(line, L, ">")
end
else break
end
SETPOS currcolumn currline